home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- Caption = "Basic Drawing Methods"
- ClientHeight = 5070
- ClientLeft = 1185
- ClientTop = 1230
- ClientWidth = 7365
- Height = 5475
- Left = 1125
- LinkMode = 1 'Source
- LinkTopic = "Form1"
- ScaleHeight = 126.119
- ScaleMode = 0 'User
- ScaleWidth = 100
- Top = 885
- Width = 7485
- Begin CommandButton Command1
- Caption = "Circle"
- Height = 615
- Left = 240
- TabIndex = 0
- Top = 120
- Width = 1335
- End
- Begin CommandButton Command2
- Caption = "Point"
- Height = 615
- Left = 240
- TabIndex = 1
- Top = 960
- Width = 1335
- End
- Begin CommandButton Command3
- Caption = "Line"
- Height = 615
- Left = 240
- TabIndex = 2
- Top = 1800
- Width = 1335
- End
- Begin CommandButton Command6
- Caption = "Box"
- Height = 615
- Left = 240
- TabIndex = 5
- Top = 2640
- Width = 1335
- End
- Begin CommandButton Command4
- Caption = "Print Hello"
- Height = 615
- Left = 240
- TabIndex = 3
- Top = 3480
- Width = 1335
- End
- Begin CommandButton Command5
- Caption = "Clear Screen"
- Height = 615
- Left = 240
- TabIndex = 4
- Top = 4320
- Width = 1335
- End
- Option Explicit
- Const MINIMIZED = 1, NORMAL = 0, PI = 3.14
- Const MARGIN = 10
- Const OFFSET = PI / 2
- Sub Command1_Click ()
- Form1.ScaleWidth = 100
- Form1.ScaleHeight = 100
- Circle (ScaleWidth / 2, ScaleHeight / 2), ScaleWidth / 4
- End Sub
- Sub Command2_Click ()
- Form1.ScaleWidth = 100
- Form1.ScaleHeight = 100
- Form1.PSet (Form1.ScaleWidth / 2, Form1.ScaleHeight / 2)
- End Sub
- Sub Command3_Click ()
- Form1.ScaleWidth = 100
- Form1.ScaleHeight = 100
- Form1.Line (50, 50)-(75, 75), RGB(255, 0, 0)
- End Sub
- Sub Command4_Click ()
- Form1.CurrentX = 70
- Form1.CurrentY = 60
- Print "Hello"
- End Sub
- Sub Command5_Click ()
- Form1.Cls
- End Sub
- Sub Command6_Click ()
- Form1.ScaleWidth = 100
- Form1.ScaleHeight = 100
- Form1.Line (25, 50)-(50, 55), RGB(255, 0, 0), BF
- End Sub
-